home *** CD-ROM | disk | FTP | other *** search
/ Aminet 2 / Aminet AMIGA CDROM (1994)(Walnut Creek)[Feb 1994][W.O. 44790-1].iso / Aminet / dev / misc / hldevkit.lha / HotLinks_Developers_Kit / includes / hotlinks / hotlinksbase.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-04-28  |  618 b   |  36 lines

  1. /*
  2.  *  HotLinksBase.h -- C include file for defining hotlink.library base
  3.  *
  4.  */
  5.  
  6. #ifndef HOTLINK_HOTLINKSBASE_H
  7. #define HOTLINK_HOTLINKSBASE_H
  8.  
  9. #ifndef EXEC_TYPES_H
  10. #include <exec/types.h>
  11. #endif EXEC_TYPES_H
  12.  
  13. #ifndef EXEC_LISTS_H
  14. #include <exec/lists.h>
  15. #endif EXEC_LISTS_H
  16.  
  17. #ifndef EXEC_LIBRARIES_H
  18. #include <exec/libraries.h>
  19. #endif EXEC_LIBRARIES_H
  20.  
  21. /* hotlink library base data structure */
  22. struct HotLinksBase
  23. {
  24.         struct Library LibNode;
  25.         UBYTE Flags;
  26.         UBYTE Pad;
  27.         ULONG SysLib;
  28.         ULONG DosLib;
  29.         ULONG SegList;
  30.         ULONG ResPort;
  31. };
  32.  
  33.  
  34.  
  35. #endif HOTLINK_HOTLINKSBASE_H
  36.